home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _SQLite_Open.au3 < prev    next >
Text File  |  2007-09-08  |  342b  |  15 lines

  1. #include <SQLite.au3>
  2. #include <SQLite.dll.au3>
  3.  
  4. _SQLite_Startup ()
  5. If @error > 0 Then
  6.     MsgBox(16, "SQLite Error", "SQLite.dll Can't be Loaded!")
  7.     Exit - 1
  8. EndIf
  9. _SQLite_Open () ; Open a :memory: database
  10. If @error > 0 Then
  11.     MsgBox(16, "SQLite Error", "Can't Load Database!")
  12.     Exit - 1
  13. EndIf
  14. _SQLite_Close ()
  15. _SQLite_Shutdown ()